home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / setup / vbnet / 17 controls / customcontroldemo / assemblyinfo.vb < prev    next >
Encoding:
Text File  |  2002-03-19  |  1.0 KB  |  33 lines

  1. Imports System.Reflection
  2. Imports System.Runtime.InteropServices
  3.  
  4. ' General Information about an assembly is controlled through the following 
  5. ' set of attributes. Change these attribute values to modify the information
  6. ' associated with an assembly.
  7.  
  8. ' Review the values of the assembly attributes
  9.  
  10. <Assembly: AssemblyTitle("")> 
  11. <Assembly: AssemblyDescription("")> 
  12. <Assembly: AssemblyCompany("")> 
  13. <Assembly: AssemblyProduct("")> 
  14. <Assembly: AssemblyCopyright("")> 
  15. <Assembly: AssemblyTrademark("")> 
  16. <Assembly: CLSCompliant(True)> 
  17. <Assembly: AssemblyKeyFile("")> 
  18.  
  19. 'The following GUID is for the ID of the typelib if this project is exposed to COM
  20. <Assembly: Guid("4E296CDD-4223-49F3-8035-E59732326E2F")> 
  21.  
  22. ' Version information for an assembly consists of the following four values:
  23. '
  24. '      Major Version
  25. '      Minor Version 
  26. '      Build Number
  27. '      Revision
  28. '
  29. ' You can specify all the values or you can default the Build and Revision Numbers 
  30. ' by using the '*' as shown below:
  31.  
  32. <Assembly: AssemblyVersion("1.0.*")> 
  33.